https://github.com/JuliaComputing/JuliaBoxTutorials/tree/master/introductory-tutorials/intro-to-julia (github : JuliaComputing/JuliaBoxTutorials/introductory-tutorials/intro-to-julia/)
Topics:
There are a few different ways to plot in Julia (including calling PyPlot).
Here we'll show you how to use Plots.jl. If it's not installed yet, you need to use the package manager to install it, and Julia will precompile it for you the first time you use it:
using Pkg
Pkg.add("Plots")
using Plots